home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / vbdatabs / chlist.cpp < prev    next >
C/C++ Source or Header  |  1999-03-14  |  4KB  |  159 lines

  1. // ------------------------------- //
  2. // -------- Start of File -------- //
  3. // ------------------------------- //
  4. // ----------------------------------------------------------- //
  5. // C++ Source Code File Name: chlist.cpp
  6. // C++ Compiler Used: Microsoft Visual C/C++ 4.2  
  7. // Produced By: Doug Gaer
  8. // File Creation Date: 12/29/1996
  9. // Date Last Modified: 03/15/1999
  10. // Copyright (c) 1997 Douglas M. Gaer
  11. // ----------------------------------------------------------- // 
  12. // ------------- Program Description and Details ------------- // 
  13. // ----------------------------------------------------------- // 
  14. /*
  15. The VBD C++ classes are copyright (c) 1997, by Douglas M. Gaer.
  16. All those who put this code or its derivatives in a commercial
  17. product MUST mention this copyright in their documentation for
  18. users of the products in which this code or its derivative
  19. classes are used. Otherwise, you have the freedom to redistribute
  20. verbatim copies of this source code, adapt it to your specific
  21. needs, or improve the code and release your improvements to the
  22. public provided that the modified files carry prominent notices
  23. stating that you changed the files and the date of any change.
  24.  
  25. THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND.
  26. THE ENTIRE RISK OF THE QUALITY AND PERFORMANCE OF THIS SOFTWARE
  27. IS WITH YOU. SHOULD ANY ELEMENT OF THIS SOFTWARE PROVE DEFECTIVE,
  28. YOU WILL ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR
  29. CORRECTION.
  30.  
  31. A character string doubly linked list class derived from the
  32. DNodeBase class and the DLListBase class.
  33. */
  34. // ----------------------------------------------------------- //   
  35. #include <string.h>
  36. #include "chlist.h"
  37.  
  38. ChList::~ChList()
  39. {
  40.   Clear();
  41. }
  42.  
  43. int ChList::Copy(const ChList &List)
  44. {
  45.   return DLListBase::Copy(List);
  46. }
  47.  
  48. ChNode *ChList::AllocNode(const DLTYPE &X)
  49. {
  50.   return new ChNode(X);
  51. }
  52.  
  53. DNodeBase *ChList::DupNode(const DNodeBase *Node)
  54. {
  55.   return AllocNode(((ChNode *)Node)->Data);
  56. }
  57.  
  58. void ChList::FreeNode(DNodeBase *Node)
  59. {
  60.   delete((ChNode *)Node);
  61. }
  62.  
  63. const ChNode *ChList::Find(const DLTYPE &X, const ChNode *ptr) const
  64. // Returns the first node having an element that matched X
  65. {
  66.   if(ptr == 0) ptr = GetFront();
  67.  
  68.   while(!IsHeader(ptr)) { // Scan until end of list
  69.     if(strcmp(ptr->Data, X) == 0) return ptr; // Match found
  70.     ptr = ptr->GetNext();
  71.   }
  72.   return 0; // No match
  73. }
  74.  
  75. ChNode *ChList::Find(const DLTYPE &X, ChNode *ptr)
  76. // Returns the first node having an element that matched X
  77. {
  78.   if(ptr == 0) ptr = GetFront();
  79.  
  80.   while(!IsHeader(ptr)) { // Scan until end of list
  81.     if(strcmp(ptr->Data, X) == 0) return ptr; // Match found
  82.     ptr = ptr->GetNext();
  83.   }
  84.   return 0; // No match
  85. }
  86.  
  87. int ChList::Delete(ChNode *Node, DLTYPE *X)
  88. {
  89.   ChNode  *ptr = Rmv(Node);
  90.   if(ptr) {
  91.     if(X) *X = ptr->Data; // Copy Data into X if X != 0
  92.     FreeNode(ptr);
  93.     return 1; // Return 1 if successful
  94.   }
  95.   return 0; 
  96. }
  97.  
  98. int ChList::DeleteFront(DLTYPE *X)
  99. {
  100.   ChNode  *ptr = RmvFront();
  101.   if(ptr) {
  102.     if(X) *X = ptr->Data; // Copy Data into X if X != 0
  103.     FreeNode(ptr);
  104.     return 1; // Return 1 if successful
  105.   }
  106.   return 0; 
  107. }
  108.  
  109. int ChList::DeleteBack(DLTYPE *X)
  110. {
  111.   ChNode  *ptr = RmvBack();
  112.   if(ptr) {
  113.     if(X) *X = ptr->Data; // Copy Data into X if X != 0
  114.     FreeNode(ptr);
  115.     return 1; // Return 1 if successful
  116.   }
  117.   return 0; 
  118. }
  119.  
  120. ChNode *ChList::Store(const DLTYPE &X)
  121. {
  122.   ChNode  *ptr = AllocNode(X);
  123.   if(ptr) AttachToBack(ptr);
  124.   return ptr; // Return a pointer to the node added
  125. }
  126.  
  127. ChNode *ChList::AddToFront(const DLTYPE &X)
  128. {
  129.   ChNode  *ptr = AllocNode(X);
  130.   if(ptr) AttachToFront(ptr);
  131.   return ptr; // Return a pointer to the node added
  132. }
  133.  
  134. ChNode *ChList::AddToBack(const DLTYPE &X)
  135. {
  136.   ChNode  *ptr = AllocNode(X);
  137.   if(ptr) AttachToBack(ptr);
  138.   return ptr; // Return a pointer to the node added
  139. }
  140.  
  141. ChNode *ChList::AddBefore(const DLTYPE &X, ChNode *Node)
  142. {
  143.   ChNode  *ptr = AllocNode(X);
  144.   if(ptr) InsertBefore(Node, ptr);
  145.   return ptr; // Return a pointer to the node added
  146. }
  147.  
  148. ChNode *ChList::AddAfter(const DLTYPE &X, ChNode *Node)
  149. {
  150.   ChNode *ptr = AllocNode(X);
  151.   if(ptr) InsertAfter(Node, ptr);
  152.   return ptr; // Return a pointer to the node added
  153. }
  154. // ----------------------------------------------------------- // 
  155. // ------------------------------- //
  156. // --------- End of File --------- //
  157. // ------------------------------- //
  158.  
  159.